-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename feature of the metrics transform processor (metrics and labels) #376
Rename feature of the metrics transform processor (metrics and labels) #376
Conversation
Codecov Report
@@ Coverage Diff @@
## master #376 +/- ##
==========================================
+ Coverage 83.92% 84.02% +0.09%
==========================================
Files 178 180 +2
Lines 9520 9594 +74
==========================================
+ Hits 7990 8061 +71
- Misses 1202 1204 +2
- Partials 328 329 +1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Just a few minor comments/nits left
processor/metricstransformprocessor/metrics_transform_processor.go
Outdated
Show resolved
Hide resolved
processor/metricstransformprocessor/metrics_transform_processor.go
Outdated
Show resolved
Hide resolved
processor/metricstransformprocessor/metrics_transform_processor.go
Outdated
Show resolved
Hide resolved
merge components.go
merge go.mod go.sum
…oogle/opentelemetry-collector-contrib into rename-metrics-label pull after amend commit
#376) * metric processor rename metrics and labels new branch * remove branches * removed validations * lint: remove unused variables related to validation * updated errors and error testing, optimized code based on comments * add metrics transform component into components file * have this built with the main collector * metric processor rename metrics and labels new branch * remove branches * removed validations * lint: remove unused variables related to validation * updated errors and error testing, optimized code based on comments * add metrics transform component into components file merge components.go * have this built with the main collector merge go.mod go.sum * go.mod resolved bad merge * go.mod resolved bad merge * go.sum after testing
* Refactor config: pipelines now under service This change moves 'pipelines' sections from the top level to under the 'service' section. * Fix typo in old comment
* Refactor syslog_input into a single operator The syslog_input operator was previously implemented as a builder that built two operators. While this is a perfectly fine solution, it happens to be the only place in this codebase where multiple operators are returned from a builder, excepting plugins. This new implementation builds the same two operators, but then wraps them together within a single operator. This will allow for the eventual simplification of other code, once plugins are also removed from this codebase.
Description: Rename Functionality including renaming the metrics name and the labels
Link to tracking Issue: #332
Testing: 100% coverage within module
Documentation: Detailed comments in code describing the responsibility of each function with a module level README
(This PR is to replace PR #347 because of incorrect and messy commits)